home *** CD-ROM | disk | FTP | other *** search
/ Champak 128 / Vol 128 (Damaged).iso / games / present_.swf / scripts / DefineSprite_253 / frame_1 / DoAction_2.as next >
Encoding:
Text File  |  2011-03-26  |  435 b   |  25 lines

  1. function showWindow()
  2. {
  3.    _visible = true;
  4. }
  5. function hideWindow()
  6. {
  7.    _visible = false;
  8.    gotoAndStop(1);
  9. }
  10. userInfo = SharedObject.getLocal("uInfo");
  11. if(userInfo.data.name != undefined)
  12. {
  13.    nametext = userInfo.data.name;
  14. }
  15. if(userInfo.data.email1 != undefined)
  16. {
  17.    email1text = userInfo.data.email1;
  18. }
  19. if(userInfo.data.email2 != undefined)
  20. {
  21.    email2text = userInfo.data.email2;
  22. }
  23. hideWindow();
  24. stop();
  25.